home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 January / Disc 3 / Amethyst.iso / live / usr / bin / mxtar < prev    next >
Encoding:
Text File  |  2001-03-10  |  82 b   |  10 lines

  1. #!/bin/sh
  2.  
  3. taropt=$1
  4. dosfile=$2
  5. shift
  6. shift
  7.  
  8. mcopy $dosfile - | tar $taropt - $@
  9.  
  10.